overlap connection - определение. Что такое overlap connection
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое overlap connection - определение

Overlap-add Method; Overlap-add; Overlap add; Overlap-add method

Orbital overlap         
CONCENTRATION OF CHEMICAL ORBITALS ON ADJACENT ATOMS
Overlap matrix; Wikipedia talk:Articles for creation/Orbital Overlap
In chemical bonds, an orbital overlap is the concentration of orbitals on adjacent atoms in the same regions of space. Orbital overlap can lead to bond formation.
Connection pool         
CACHE OF DATABASE CONNECTIONS MAINTAINED BY THE DATABASE
Connection pooling; Connection Pool
In software engineering, a connection pool is a cache of database connections maintained so that the connections can be reused when future requests to the database are required.
Connection (vector bundle)         
  • A section of a bundle may be viewed as a generalized function from the base into the fibers of the vector bundle. This can be visualized by the graph of the section, as in the figure above.
  • How to recover the covariant derivative of a connection from its parallel transport. The values <math>s(\gamma(t))</math> of a section <math>s\in \Gamma(E)</math> are parallel transported along the path <math>\gamma</math> back to <math>\gamma(0)=x</math>, and then the covariant derivative is taken in the fixed vector space, the fibre <math>E_x</math> over <math>x</math>.
LINEAR CONNECTION ON A VECTOR BUNDLE
Koszul connection; Vector bundle connection; Connection on a vector bundle
In mathematics, and especially differential geometry and gauge theory, a connection on a fiber bundle is a device that defines a notion of parallel transport on the bundle; that is, a way to "connect" or identify fibers over nearby points. The most common case is that of a linear connection on a vector bundle, for which the notion of parallel transport must be linear.

Википедия

Overlap–add method

In signal processing, the overlap–add method is an efficient way to evaluate the discrete convolution of a very long signal x [ n ] {\displaystyle x[n]} with a finite impulse response (FIR) filter h [ n ] {\displaystyle h[n]} :

where h[m] = 0 for m outside the region [1, M]. This article uses common abstract notations, such as y ( t ) = x ( t ) h ( t ) , {\textstyle y(t)=x(t)*h(t),} or y ( t ) = H { x ( t ) } , {\textstyle y(t)={\mathcal {H}}\{x(t)\},} in which it is understood that the functions should be thought of in their totality, rather than at specific instants t {\textstyle t} (see Convolution#Notation).

The concept is to divide the problem into multiple convolutions of h[n] with short segments of x [ n ] {\displaystyle x[n]} :

x k [ n ]     { x [ n + k L ] , n = 1 , 2 , , L 0 , otherwise , {\displaystyle x_{k}[n]\ \triangleq \ {\begin{cases}x[n+kL],&n=1,2,\ldots ,L\\0,&{\text{otherwise}},\end{cases}}}

where L is an arbitrary segment length. Then:

x [ n ] = k x k [ n k L ] , {\displaystyle x[n]=\sum _{k}x_{k}[n-kL],\,}

and y[n] can be written as a sum of short convolutions:

y [ n ] = ( k x k [ n k L ] ) h [ n ] = k ( x k [ n k L ] h [ n ] ) = k y k [ n k L ] , {\displaystyle {\begin{aligned}y[n]=\left(\sum _{k}x_{k}[n-kL]\right)*h[n]&=\sum _{k}\left(x_{k}[n-kL]*h[n]\right)\\&=\sum _{k}y_{k}[n-kL],\end{aligned}}}

where the linear convolution y k [ n ]     x k [ n ] h [ n ] {\displaystyle y_{k}[n]\ \triangleq \ x_{k}[n]*h[n]\,} is zero outside the region [1, L + M − 1]. And for any parameter N L + M 1 , {\displaystyle N\geq L+M-1,\,} it is equivalent to the N-point circular convolution of x k [ n ] {\displaystyle x_{k}[n]\,} with h [ n ] {\displaystyle h[n]\,} in the region [1, N].  The advantage is that the circular convolution can be computed more efficiently than linear convolution, according to the circular convolution theorem:

where:

  • DFTN and IDFTN refer to the Discrete Fourier transform and its inverse, evaluated over N discrete points, and
  • L is customarily chosen such that N = L+M-1 is an integer power-of-2, and the transforms are implemented with the FFT algorithm, for efficiency.